home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 1 / ETO Development Tools 1.iso / Essentials / MacApp Documentation / MacApp AppleLink Messages / MacApp.Tech$ Oct 89 / Z0198-2.0B5 problems with-Oct89 < prev    next >
Encoding:
Text File  |  1989-10-27  |  1.4 KB  |  40 lines  |  [TEXT/GEOL]

  1. Item    2853333                         27-Oct-89        09:43
  2.  
  3. From:   MUYSVASOVIC1                    ER&D - J-D Muys-Vasovic
  4.  
  5. To:     CH0068                          CH DEV Hamilton, Bonaduz
  6.         D3512                           N C Mem Hospital, R Lonon, AST
  7.  
  8. cc:     MACAPP.TECH$                    MACAPP Tech
  9.  
  10. Sub:    2.0B5 problems with MPW 3.0
  11.  
  12. Rick, Bonaduz,
  13.  
  14. The correct answer may be shortened in "RTFM". This problems is described in
  15. full length in the release notes you received with MPW 3.0. I know: real
  16. programmers never read the documentation. But they never nead tech support
  17. either, do they? As for the solution, it is certainly NOT removing the {$H+}
  18. directives, or you'll defeat all the safety checking sytem of the compile. The
  19. solution lies in bracketing the offending lines in the following way:
  20.  
  21. {$PUSH} {$H-}
  22. < offending line(s) >
  23. {$POP}
  24.  
  25. Now you should really go to MacApp 2.0B9 which is much nicer. And don't say
  26. that "Apple didn't mention that problem clearly somewhere". It is mentioned,
  27. together with the solution. This problem has also been discussed at length on
  28. MacApp.Tech$. Fortunately it's a problem of the past.
  29.  
  30. Regards.
  31.  
  32.  
  33. Jean-Denis Muys-Vasovic
  34. Apple Computer Europe.
  35.  
  36. PS: There is a different problem in B5 where a function is written with illegal
  37. code. The fix consists in defining a local variable to hold the result of the
  38. function temporarily.
  39.  
  40.